 *{
      margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20PX 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 17px;
}
body {
            font-family: 'Inter', sans-serif;
            background-color: black; 
            color: #fff; 
            line-height: 1.6;
        }
   
        .container {
            max-width: 960px;
            margin: 2rem auto;
            padding: 2rem;
            background-color: black; 
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
        }
       
        h1, h3 {
            font-weight: 700; 
            color: #cc0000; 
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 40px; 
            text-align: center;
            margin: 60px;
        }
        h3 {
            font-size: 40px; 
            border-bottom: 2px solid #eee; 
            padding-bottom: 0.5rem;
            margin-top: 2rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
       
        strong {
            color: #fff;
        }
      
        ul {
            list-style-type: disc;
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
      
        @media (max-width: 768px) {
            .container {
                margin: 1rem;
                padding: 1rem;
            }
            }
            h1 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
           

body {
  background-color: #000; 
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  margin: 0;
  padding: 20px;
}

h2 {
  color: #e60000; 
  font-size: 24px;
  border-bottom: 2px solid #e60000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: #0f0f0f; 
  color: white;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #444;
}

th {
  background-color: #e60000;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

tr:nth-child(even) {
  background-color: #1a1a1a;
}

tr:hover {
  background-color: #262626;
}


             